home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / (gcc-1.37.π) / output.h < prev    next >
Encoding:
Text File  |  1993-09-28  |  3.2 KB  |  104 lines  |  [TEXT/KAHL]

  1. /* Declarations for insn-output.c.  These functions are defined in recog.c.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.    Copyright (C) 1989, 1990 Apple Computer, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* Operand-predicate functions.  */
  22. int general_operand ();
  23. int push_operand ();
  24. int memory_operand ();
  25. int indirect_operand ();
  26. int immediate_operand ();
  27. int register_operand ();
  28. int address_operand ();
  29. int nonmemory_operand ();
  30. int nonimmediate_operand ();
  31.  
  32. int offsettable_address_p ();
  33. rtx adj_offsettable_operand ();
  34.  
  35. /* Output a string of assembler code.
  36.    Defined in final.c.  */
  37. void output_asm_insn();
  38.  
  39. /* When outputting assembler code, indicates which alternative
  40.    of the constraints was actually satisfied.  */
  41. extern int which_alternative;
  42.  
  43. /* When outputting delayed branch sequences, this rtx holds the
  44.    sequence being output.  It is null when no delayed branch
  45.    sequence is being output, so it can be used as a test in the
  46.    insn output code.
  47.  
  48.    This variable is defined  in final.c.  */
  49. extern rtx final_sequence;
  50.  
  51. /* Nonzero if function being compiled pops its args on return.
  52.    May affect compilation of return insn or of function epilogue.  */
  53.  
  54. extern int current_function_pops_args;
  55.  
  56. /* Nonzero if function being compiled needs to be given an address
  57.    where the value should be stored.  */
  58.  
  59. extern int current_function_returns_struct;
  60.  
  61. /* Nonzero if function being compiled needs to
  62.    return the address of where it has put a structure value.  */
  63.  
  64. extern int current_function_returns_pcc_struct;
  65.  
  66. /* Nonzero if function being compiled needs to be passed a static chain.  */
  67.  
  68. extern int current_function_needs_context;
  69.  
  70. /* Nonzero if function being compiled can call setjmp.  */
  71.  
  72. extern int current_function_calls_setjmp;
  73.  
  74. /* Nonzero if function being compiled can call alloca,
  75.    either as a subroutine or builtin.  */
  76.  
  77. extern int current_function_calls_alloca;
  78.  
  79. /* Nonzero if the current function returns a pointer type */
  80.  
  81. extern int current_function_returns_pointer;
  82.  
  83. /* If function's args have a fixed size, this is that size, in bytes.
  84.    Otherwise, it is -1.
  85.    May affect compilation of return insn or of function epilogue.  */
  86.  
  87. extern int current_function_args_size;
  88.  
  89. /* # bytes the prologue should push and pretend that the caller pushed them.
  90.    The prologue must do this, but only if parms can be passed in registers.  */
  91.  
  92. extern int current_function_pretend_args_size;
  93.  
  94. /* Name of function now being compiled.  */
  95.  
  96. extern char *current_function_name;
  97. #ifdef APPLE_C
  98. /* Nonzero if the current function was declared as a pascal function. */
  99.  
  100. extern int current_function_is_pascal;
  101.  
  102. #endif /* APPLE_C */
  103.  
  104. #include "recog.h"